gtkimcontextsimple: move documentation to inline comments
authorJavier Jardón <jjardon@gnome.org>
Wed, 1 Sep 2010 17:29:02 +0000 (19:29 +0200)
committerJavier Jardón <jjardon@gnome.org>
Wed, 1 Sep 2010 18:37:39 +0000 (20:37 +0200)
docs/reference/gtk/tmpl/.gitignore
docs/reference/gtk/tmpl/gtkimcontextsimple.sgml [deleted file]
gtk/gtkimcontextsimple.c
gtk/gtkimcontextsimple.h

index 3646672288143a658d6a331090a97de1cb181fc9..d19042e8db6ee7c2d6b56a113d0147e3c7c6cb2c 100644 (file)
@@ -7,6 +7,7 @@ gtkcalendar.sgml
 gtkcelleditable.sgml
 gtkhbox.sgml
 gtkiconview.sgml
+gtkimcontextsimple.sgml
 gtkimmulticontext.sgml
 gtkmessagedialog.sgml
 gtkobject.sgml
diff --git a/docs/reference/gtk/tmpl/gtkimcontextsimple.sgml b/docs/reference/gtk/tmpl/gtkimcontextsimple.sgml
deleted file mode 100644 (file)
index 59d9315..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-<!-- ##### SECTION Title ##### -->
-GtkIMContextSimple
-
-<!-- ##### SECTION Short_Description ##### -->
-An input method context supporting table-based input methods
-
-<!-- ##### SECTION Long_Description ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION See_Also ##### -->
-<para>
-
-</para>
-
-<!-- ##### SECTION Stability_Level ##### -->
-
-
-<!-- ##### SECTION Image ##### -->
-
-
-<!-- ##### STRUCT GtkIMContextSimple ##### -->
-<para>
-
-</para>
-
-
-<!-- ##### FUNCTION gtk_im_context_simple_new ##### -->
-<para>
-
-</para>
-
-@void: 
-@Returns: 
-
-
-<!-- ##### FUNCTION gtk_im_context_simple_add_table ##### -->
-<para>
-
-</para>
-
-@context_simple: 
-@data: 
-@max_seq_len: 
-@n_seqs: 
-
-
-<!-- ##### MACRO GTK_MAX_COMPOSE_LEN ##### -->
-<para>
-The maximum length of sequences in compose tables.
-</para>
-
-
-
index 9b73f8445ecade38762a55247bfcf429e68b1228..27e8980b8544988dea012b0193f2e1694509d38d 100644 (file)
 #include "gtkintl.h"
 
 
+/**
+ * SECTION:gtkimcontextsimple
+ * @Short_description: An input method context supporting table-based input methods
+ * @Title: GtkIMContextSimple
+ */
+
+
 typedef struct _GtkComposeTable GtkComposeTable;
 typedef struct _GtkComposeTableCompact GtkComposeTableCompact;
 
index a215110c51c870d2372f879bf5eb768ea314ea39..828983c8da2e53a19927a45dc34ed7abf6b086ae 100644 (file)
 
 G_BEGIN_DECLS
 
+/**
+ * GTK_MAX_COMPOSE_LEN:
+ *
+ * The maximum length of sequences in compose tables.
+ */
+#define GTK_MAX_COMPOSE_LEN 7
 
 #define GTK_TYPE_IM_CONTEXT_SIMPLE              (gtk_im_context_simple_get_type ())
 #define GTK_IM_CONTEXT_SIMPLE(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimple))
@@ -42,8 +48,6 @@ typedef struct _GtkIMContextSimple              GtkIMContextSimple;
 typedef struct _GtkIMContextSimplePrivate       GtkIMContextSimplePrivate;
 typedef struct _GtkIMContextSimpleClass         GtkIMContextSimpleClass;
 
-#define GTK_MAX_COMPOSE_LEN 7
-
 struct _GtkIMContextSimple
 {
   GtkIMContext object;